data segment - перевод на русский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

data segment - перевод на русский

STORAGE SEGMENT
.data; Rodata; Read-only data segment; Rodata segment; .rodata
  • This shows the typical layout of a simple computer's program memory with the text, various data, and stack and heap sections.

data segment         

общая лексика

сегмент данных

в процессорах 80x86 - часть ОЗУ, адресуемая регистром DS

часть ОЗУ или внешней памяти, содержащая используемые программой данные

data segment         
сегаент данных
code segment         
PORTION OF AN OBJECT FILE CONTAINING EXECUTABLE INSTRUCTIONS
Text segment; .text

общая лексика

CS

кодовый сегмент

в архитектуре процессоров Intel 8086 область ОЗУ, содержащая исполняемые программы. Другие сегменты - data segment (DS), stack segment (SS) и extra segment (ES)

Смотрите также

machine code

Определение

data segment
<memory> The range of memory locations where the {initialised data} of a program produced by a Unix linker is located. Executable code is located in the code segment and uninitialised data in the bss segment. (2004-02-24)

Википедия

Data segment

In computing, a data segment (often denoted .data) is a portion of an object file or the corresponding address space of a program that contains initialized static variables, that is, global variables and static local variables. The size of this segment is determined by the size of the values in the program's source code, and does not change at run time.

The data segment is read/write, since the values of variables can be altered at run time. This is in contrast to the read-only data segment (rodata segment or .rodata), which contains static constants rather than variables; it also contrasts to the code segment, also known as the text segment, which is read-only on many architectures. Uninitialized data, both variables and constants, is instead in the BSS segment.

Historically, to be able to support memory address spaces larger than the native size of the internal address register would allow, early CPUs implemented a system of segmentation whereby they would store a small set of indexes to use as offsets to certain areas. The Intel 8086 family of CPUs provided four segments: the code segment, the data segment, the stack segment and the extra segment. Each segment was placed at a specific location in memory by the software being executed and all instructions that operated on the data within those segments were performed relative to the start of that segment. This allowed a 16-bit address register, which would normally be able to access 64 KB of memory space, to access 1 MB of memory space.

This segmenting of the memory space into discrete blocks with specific tasks carried over into the programming languages of the day and the concept is still widely in use within modern programming languages.

Как переводится data segment на Русский язык